flowchart LR
A[Hard edge] --> B(Round edge)
B --> C{Decision}
C --> D[Result one]
C --> E[Result two]
Documentation for the GESIS AppKit
Preface
To learn more about Quarto books visit https://quarto.org/docs/books.
This is the landing/cover/overview page of the book. It needs to be called intro.qmd and this name must not be changed.
The overall settings for the book such as style, theme, title, authors, and overall interactive elements such as table of contents, search functions, pagination, download function etc. are set in the _quarto.yml file. To see an overview of setting options, check: https://quarto.org/docs/reference/projects/books.html
We can add new chapters to the the book by creating new files in the directory ending with .qmd. For example, if we create a new file called summary2.qmd. We can write some text into it and then add it to the book by listing it in the _quarto.yml file under chapters:
Within each chapter, we can structure headlines with # like so:
Headline 1
Headline 2
Headline 3
Headline 4
Headline 5
Headline 6
Markdown Basics
We can make text bold, italicized, strikethrough or use verbatim code highlights:
italics, bold, bold italics
superscript2 / subscript2
strikethrough
verbatim code
inline math: \(E = mc^{2}\)
display math: \[E = mc^{2}\]
\[ \def\RR{{\bf R}} \def\bold#1{{\bf #1}} \]
Div
Blockquote
Spaces and newlines
are preserved
endash: –
emdash: —
Links
We can also add links and images:
Links without link text: https://quarto.org
Links with link text: Quarto
Images
We can do regular images
We can also do multiple images with layouting
We can also change image sizes individually
Lists
We can also create lists
unordered list
- sub-item 1
- sub-item 2
- sub-sub-item 1
item 2
Continued (indent 4 spaces)
- ordered list
- item 2
- sub-item 1
- sub-sub-item 1
- sub-item 1
- A list whose numbering
continues after
- an interruption
- A list
- Followed by another list
- term
- definition
Tables
We can also add tables
| Right | Left | Default | Center |
|---|---|---|---|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
Diagrams and Flowcharts
We can also add mermaid and graphviz diagrams and flowcharts
Videos
We can also embedd videos
Pagebreaks
We can also add pagebreaks. This only affects pdfs but not htmls.
page 1
page 2
Codeblocks
780 + 220[1] 1000
Callout blocks
We can highlight text with callout blocks
Note that there are five types of callouts, including: note, warning, important, tip, and caution.
This is a red label warning
This is an example of a callout with a title.
This is an example of a ‘folded’ caution callout that can be expanded by the user. You can use collapse="true" to collapse it by default or collapse="false" to make a collapsible callout that is expanded by default.
Using callouts is an effective way to highlight content that your reader give special consideration or attention.